body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.menu-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 10px 5px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
  gap: 5px;
}

.menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 65px;
  flex-shrink: 0;
}

.menu-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 5px;
}

.menu-item a {
  font-size: 10px;
  color: #333;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.menu-item a span {
  display: inline-block;
  line-height: 1.2;
  word-break: break-word;
  width: 100%;
  padding: 0 1px;
}

.menu-item a:hover {
  color: #007BFF;
}

@media (max-width: 768px) {
  .menu-container {
    justify-content: flex-start;
    padding: 8px 3px;
    gap: 4px;
  }
  
  .menu-item {
    min-width: 60px;
  }
  
  .menu-item img {
    width: 45px;
    height: 45px;
  }
  
  .menu-item a {
    font-size: 9px;
  }
}